home *** CD-ROM | disk | FTP | other *** search
/ Internet News 2001 March / Internet News 2001-03 - CD-ROM.rar / IN200103.ISO / Linux / ETLinux / _7eboot-0.70a.flp / init / FLPLOAD < prev    next >
Text File  |  2000-03-06  |  594b  |  38 lines

  1. #!/bin/sh
  2. #
  3. # flpload - loads packages from floppies
  4. # by Matthew Franz and Antonio Garcia
  5. #
  6.  
  7. # is a floppy mounted already?
  8.  
  9. if mount | grep fd0
  10. then
  11.     cd /; umount /dev/fd0
  12. fi
  13.  
  14. prompt=y
  15.  
  16. while [ "$prompt" = "y" ]
  17. do
  18.     if mount -t msdos /dev/fd0 /floppy > /dev/null
  19.     then
  20.         cd /floppy
  21.         for file in `ls *.tgz 2> /dev/null`
  22.         do
  23.             pkgadd $file            
  24.         done
  25.  
  26.         cd /; umount /dev/fd0
  27.     else
  28.         echo "Disk error!  Is there really a floppy?"   
  29.     fi
  30. echo
  31. echo "REMOVE DISK NOW AND INSERT ADDITIONAL DISK "
  32. echo "OR HIT RETURN TO END FLOPPY LOADING"
  33. echo -n "Do you have another disk? "
  34. read prompt
  35. done
  36.  
  37.  
  38.